2.1.2. Querry string parametrs
Parametrs
Main Parameters
| Parameter | Description | Mandatory | Type | Notes | 
|---|---|---|---|---|
| country | Country code | Yes | ||
| name | Organization name (mandatory for new registration) | Yes (for new registration) | ||
| fiscal_id | Tax identification number (mandatory for new registration) | Yes (for new registration) | ||
| is_legal | Indicator of a legal entity (true/false) | |||
| contract_num | Contract number | |||
| contact_name | Contact person | |||
| region | Region name; if not found in the directory, it will be added | |||
| district | District name; if not found in the directory, it will be added | |||
| address | Organization address | |||
| Email (mandatory for new registration) | Yes (for new registration) | |||
| phone | Organization phone number (mandatory for new registration) | Yes (for new registration) | ||
| activities | Array of activity types | array of objects | See activitiesArray Structure below | |
| activated_packages | Activated packages | array of objects | See activated_packagesArray Structure below | |
| activated_services | Activated services | array of objects | See activated_servicesArray Structure below | 
activities Array Structure
| Parameter | Description | Mandatory | Type | Notes | 
|---|---|---|---|---|
| code | Activity code | |||
| name | Activity name | 
activated_packages Array Structure
| Parameter | Description | Mandatory | Type | Notes | 
|---|---|---|---|---|
| code | Package code | |||
| date_from | Start date of activation | |||
| date_for | End date of activation | |||
| price | Specialized package price | 
activated_services Array Structure
| Parameter | Description | Mandatory | Type | Notes | 
|---|---|---|---|---|
| code | Service code | |||
| date_from | Start date of activation | |||
| date_for | End date of activation | |||
| price | Specialized service price | 
[!NOTE] The mandatory fields for registration are: name, fiscal_id, phone, email.
Code structure
{
  "country": "",
  "name": "",
  "fiscal_id": "",
  "is_legal": true,
  "contract_num": "",
  "contact_name": "",
  "region": "",
  "district": "",
  "address": "",
  "email": "",
  "phone": "",
  "activities": [
    {
      "code": "",
      "name": ""
    }
  ],
  "activated_packages": [
    {
      "code": "",
      "date_from": "",
      "date_for": "",
      "price": 0
    }
  ],
  "activated_services": [
    {
      "code": "",
      "date_from": "",
      "date_for": "",
      "price": 0
    }
  ]
}
Field Descriptions
- country – Country code, required
- name – Organization name, required for new registration
- fiscal_id – Tax identification number, required for new registration
- is_legal – Indicates if it is a legal entity (true|false)
- contract_num – Contract number
- contact_name – Contact person
- region – Region name; if not found in the directory, it will be added
- district – District name; if not found in the directory, it will be added
- address – Organization address
- email – Email, required for new registration
- phone – Organization phone number, required for new registration
- activities – Array of activity types, each containing:- code – Activity code
- name – Activity name
 
- activated_packages – Array of activated packages, each containing:- code – Package code
- date_from – Start date
- date_for – End date
- price – Specialized package price
 
- activated_services – Array of activated services, each containing:- code – Service code
- date_from – Start date
- date_for – End date
- price – Specialized service price